bitkeeper revision 1.1638 (429f0702i8Aq9b8ywQxXo9xS63DS0A)
authorvh249@arcadians.cl.cam.ac.uk <vh249@arcadians.cl.cam.ac.uk>
Thu, 2 Jun 2005 13:17:54 +0000 (13:17 +0000)
committervh249@arcadians.cl.cam.ac.uk <vh249@arcadians.cl.cam.ac.uk>
Thu, 2 Jun 2005 13:17:54 +0000 (13:17 +0000)
missing braces for the for body (this is not python)

Signed-off-by: Vincent Hanquez <vincent@xensource.com>
linux-2.6.11-xen-sparse/arch/xen/kernel/gnttab.c

index 69293cdb73ff416c85eeca61b642a4efde4a0c65..8fe43247ac7ca548d1be2d249f01bedf1bef8f6b 100644 (file)
@@ -189,9 +189,11 @@ gnttab_free_grant_references( u16 count, grant_ref_t head )
     int i;
 
     for ( i = 0; i < count; i++ )
+    {
         to_die = next;
         next = gnttab_free_list[next];
         put_free_entry( to_die );
+    }
 }
 
 int